home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-05-27 | 599 b | 25 lines | [TEXT/R*ch] |
- // QuickRef: The fields of a crontab entry specify the following:
- //
- // Field Meaning
- // ----- ------------------------------------------------------
- // 1 Minute (0-59)
- // 2 Hour (0-23)
- // 3 Day of the month (1-31)
- // 4 Month of the year (1-12)
- // 5 Day of the week (1-7, with 1=Monday)
- // 6 User name (unused)
- // 7+ Command name and arguments (if command is preceded by
- // "-b" cron executes it in the background).
-
-
-
- // We include this line to prove to the first time Cron user that
- // Cron actually works.
-
- startup 0 : * * * * * nobody echo "Cron is alive and well."
-
-
-
-
-
-